From: Jim Blandy Date: Thu, 27 May 1993 02:08:14 +0000 (+0000) Subject: * s/aix3-2.h (C_SWITCH_SYSTEM): Don't define this to be "-ma" if X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95904 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=7ad1552990092f3c0301a2bb946bf368def41b08;p=emacs.git * s/aix3-2.h (C_SWITCH_SYSTEM): Don't define this to be "-ma" if we're using GCC - that's an XLC switch. * s/aix3-2.h (LIBS_SYSTEM): Put -LIM -Liconv here. --- diff --git a/src/s/aix3-2.h b/src/s/aix3-2.h index e5c9859b8d7..e789a8a7a28 100644 --- a/src/s/aix3-2.h +++ b/src/s/aix3-2.h @@ -6,7 +6,9 @@ and that's supposedly what 3.2 will come with. */ #undef SPECIFY_X11R4 +#ifndef __GNUC__ #define C_SWITCH_SYSTEM -ma +#endif #define HAVE_ALLOCA #undef rindex #undef index @@ -17,3 +19,8 @@ 3.2, and a cc-compiled Emacs works with this undefined. --karl@cs.umb.edu. */ #undef SYSTEM_MALLOC + +/* + IBM's X11R5 use these libraries in AIX 3.2.2. */ + +#define LIBS_SYSTEM -lIM -liconv